7c58b2a259aa53425d0a1a1d5c7da82712a6dcc9,portal-ejb/src/com/liferay/portal/security/ldap/LDAPImportUtil.java,LDAPImportUtil,_importLDAP,#String#LdapContext#Properties#Properties#SearchResult#,254
Before Change
description);
}
UserLocalServiceUtil.addUserGroupUsers(
userGroup.getUserGroupId(), new String[] {userId});
}
}
}
After Change
groupName, description);
}
if (userGroup != null) {
if (_log.isDebugEnabled()) {
_log.debug(
"Adding " + userId + " to group " + groupName);
}
UserLocalServiceUtil.addUserGroupUsers(
userGroup.getUserGroupId(), new String[] {userId});
}
}
}